home *** CD-ROM | disk | FTP | other *** search
/ Dr. Windows 3 / dr win3.zip / dr win3 / WINSOUND / CHIMES.ZIP / CHIMES.H < prev    next >
C/C++ Source or Header  |  1993-06-02  |  2KB  |  65 lines

  1. // fileview.h : Declares the class interfaces for the application.
  2. //          Fileview is a program which can display the contents of
  3. //          a text-only file regardless of its size.
  4. //
  5. // This is a part of the Microsoft Foundation Classes C++ library.
  6. // Copyright (C) 1992 Microsoft Corporation
  7. // All rights reserved.
  8. //
  9. // This source code is only intended as a supplement to the
  10. // Microsoft Foundation Classes Reference and Microsoft
  11. // QuickHelp documentation provided with the library.
  12. // See these sources for detailed information regarding the
  13. // Microsoft Foundation Classes product.
  14.  
  15. #ifndef __CHIMES_H__
  16. #define __CHIMES_H__
  17.  
  18. #include <afxwin.h>
  19. #include "dcemidi.h"
  20. #include "resource.h"
  21. #include "main.h"
  22.  
  23. /////////////////////////////////////////////////////////////////////////////
  24.  
  25. // CMainWindow:
  26. // See fileview.cpp for the code to the member functions and the
  27. // message map.
  28. //
  29.  
  30. class CMainWindow : public CFrameWnd
  31. {
  32. public:
  33.     CMainWindow();
  34.     ~CMainWindow();
  35.  
  36.     afx_msg int  OnCreate(LPCREATESTRUCT lpcs);
  37.     afx_msg void OnAbout();
  38.     afx_msg void OnOpen();
  39.     afx_msg void OnExit();
  40.     afx_msg void OnClose();
  41.     void OnPlayStop();
  42.     
  43. private:
  44.     CMyMainDialog *p_dlg;
  45.     
  46.     DECLARE_MESSAGE_MAP();
  47.     
  48. };
  49.  
  50. /////////////////////////////////////////////////////////////////////////////
  51.  
  52. // CTheApp:
  53. // See chimes.cpp for the code to the InitInstance member function.
  54. //
  55.  
  56. class CTheApp : public CWinApp
  57. {
  58. public:
  59.     BOOL InitInstance();
  60. };
  61.  
  62. /////////////////////////////////////////////////////////////////////////////
  63.  
  64. #endif // __CHIMES_H__
  65.